
        /*Twitter Banner Part*/
        .sm-section {
            font-family: Arial, sans-serif;
            background-color: #f5f7ff;
            margin-top: 100px;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
        }
        .media-banner {
            display: flex;
            max-width: 1200px;
            gap: 20px;
        }
        .partner-section, .social-media-section {
            background-color: #333;
            border-radius: 12px;
            overflow: hidden;
            color: white;
            font-size: 0.9em;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .partner-section {
            background-image: url('https://images.pexels.com/photos/17406672/pexels-photo-17406672/free-photo-of-welder-at-work.jpeg'); /* Replace with your background image URL */
            background-size: cover;
            background-position: center;
            width: 50%;
            padding: 20px;
        }
        .partner-section h3 {
            font-size: 1.5em;
            margin: 0 0 15px;
        }
        .partner-list {
            list-style: none;
            padding: 0;
            margin: 0;
            line-height: 1.8;
        }
        .partner-list li {
            color: #ffffff;
        }
        .social-media-section {
            background-color: #ffffff;
            width: 50%;
            color: #333;
            padding: 20px;
        }
        .social-media-section h3 {
            font-size: 1.2em;
            margin: 0 0 10px;
        }
        .twitter-embed {
            background-color: #f5f7ff;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
            max-height: 200px;
        }
        .twitter-embed p {
            margin: 0;
            color: #333;
            font-size: 0.9em;
        }
        .follow-button {
            display: inline-block;
            font-size: 0.9em;
            color: white;
            background-color: #333;
            padding: 5px 10px;
            border-radius: 12px;
            text-align: center;
            text-decoration: none;
            margin-bottom: 10px;
        }